Dynomotion

Group: DynoMotion Message: 15107 From: magergar@hotmail.com Date: 10/27/2017
Subject: Kmotion.net GCode Interpreter

I have a question about the interpreter, it only load a file and execute it or can I do something else between this?.

the thing is that i have a spindle which I do not control with the kstep(via RS485) but i would like to turn on my spindle and change its speed directly from the GCode

it is posible?

Group: DynoMotion Message: 15108 From: Tom Kerekes Date: 10/27/2017
Subject: Re: Kmotion.net GCode Interpreter
I'm not sure I understand the question but the GCode Interpreter allows you to configure the M3, M4, M5, and S commands to  perform most any Action you wish.  Including running a C Program that might send a serial command via your RS485.  See:
http://dynomotion.com/Help/KMotionCNC/ToolSetupScreenM3.htm

Regards
TK

On 10/27/2017 12:33 PM, magergar@... [DynoMotion] wrote:
 

I have a question about the interpreter, it only load a file and execute it or can I do something else between this?.

the thing is that i have a spindle which I do not control with the kstep(via RS485) but i would like to turn on my spindle and change its speed directly from the GCode

it is posible?


Group: DynoMotion Message: 15109 From: magergar@hotmail.com Date: 10/27/2017
Subject: Re: Kmotion.net GCode Interpreter
Attachments :
    That's exactly what I want to do.
    in KM_Interpreter there is a method called SetMcodeAction, that is what I need to use right?
    I would like to call a method in my program but i don't see any action that does that.
    in the attached image are the function I'm allowed to do.

    Also in that method (SetMCodeAction) there are several variables that i don't know what are for
    "public void SetMcodeAction(int index, MCODE_TYPE type, double val1, double val2, double val3, double val4, double val5, string name);"

    One More thing, this method works for the letter "S" to? or should I use something else?
    Group: DynoMotion Message: 15110 From: Tom Kerekes Date: 10/27/2017
    Subject: Re: Kmotion.net GCode Interpreter
    The M_Action_Callback Action type can be used to call a function on the PC that you create and register with the Interpreter as the MCode call back function.

    You might see the KMotion_dotNet Console example of how a callback function can be registered to the Interpreter with this line:

                _Controller.CoordMotion.Interpreter.InterpreterUserMCodeCallbackRequested += new KMotion_dotNet.KM_Interpreter.KM_GCodeInterpreterUserMcodeCallbackHandler(Interpreter_InterpreterUserMCodeCallbackRequested);

    Different Action types use (or not use) the specified 5 Action values in different ways.  For example for the Action to set a Bit the first value specified which bit the Action should set and the second value specifies the state to set.  For the MCode User Callback Action none of the values are used.

    HTH
    Regards
    TK


    On 10/27/2017 1:48 PM, magergar@... [DynoMotion] wrote:
     

    That's exactly what I want to do.
    in KM_Interpreter there is a method called SetMcodeAction, that is what I need to use right?
    I would like to call a method in my program but i don't see any action that does that.
    in the attached image are the function I'm allowed to do.

    Also in that method (SetMCodeAction) there are several variables that i don't know what are for
    "public void SetMcodeAction(int index, MCODE_TYPE type, double val1, double val2, double val3, double val4, double val5, string name);"

    One More thing, this method works for the letter "S" to? or should I use something else?


    Group: DynoMotion Message: 15113 From: magergar@hotmail.com Date: 10/30/2017
    Subject: Re: Kmotion.net GCode Interpreter
    I'm trying to use M_Action_Callback but I don't fully understand how it works.
    I registered the callback function, and I changed the mode of letter M3 to M_Action_Callback
    but what if I need two different functions,let's say  M3=Spindle on, M4= Spindle off, can I use 2 different callbacks? I dont see how I'm going to tell what function it's going to use
    And how do I pass a parameter for the letter S for the RPM? the letter S use this method?
    below it's the code I'm using.

    KM_Controller KM;
    KM_CoordMotion CM;
    KM_Interpreter GCode;

            public GCodeInterpreter()//this is the form
            {
                InitializeComponent();
                KM = new KM_Controller();
                CM = new KM_CoordMotion(KM);

                CM.Interpreter.InterpreterUserMCodeCallbackRequested += new  KM_Interpreter.KM_GCodeInterpreterUserMcodeCallbackHandler(Run);

                CM.Interpreter.InterpreterUserMCodeCallbackRequested += new  KM_Interpreter.KM_GCodeInterpreterUserMcodeCallbackHandler(Stop);

                GCode = new KM_Interpreter(CM);
            }


            private void GCodeInterpreter_Load(object sender, EventArgs e)
            {
                GCode.SetMcodeAction(3,MCODE_TYPE.M_Action_Callback, 0,0,0,0,0,"");
                GCode.SetMcodeAction(4,MCODE_TYPE.M_Action_Callback, 0,0,0,0,0,"");
            }
           
            private int Run(int code)
            {
                MessageBox.Show("Run");
                return 0;
            }

            private int Run(int code)
            {
                MessageBox.Show("Stop");
                return 0;
            }


       
    Group: DynoMotion Message: 15114 From: Tom Kerekes Date: 10/30/2017
    Subject: Re: Kmotion.net GCode Interpreter
    There is only one callback function allowed but a code is passed as the Action Index so you will be able to tell if for example M3 invoked the call or M4 invoked the call.

    For things like the S parameter Speed your code should have full access to the GCode Interpreter so it shouldn't be necessary to pass it to your function.  See the KM_Interpreter_SetupParams and SpindleSpeed property.

    BTW I don't know what you are trying to do but normally the M3 M4 S Actions would be configured to do something to KFLOP directly without the need of any Callback functionality on the PC.  I assume you have some reason for trying to do things this way.

    HTH
    Regards
    TK

    On 10/30/2017 11:09 AM, magergar@... [DynoMotion] wrote:
     

    I'm trying to use M_Action_Callback but I don't fully understand how it works.
    I registered the callback function, and I changed the mode of letter M3 to M_Action_Callback
    but what if I need two different functions,let's say  M3=Spindle on, M4= Spindle off, can I use 2 different callbacks? I dont see how I'm going to tell what function it's going to use
    And how do I pass a parameter for the letter S for the RPM? the letter S use this method?
    below it's the code I'm using.

    KM_Controller KM;
    KM_CoordMotion CM;
    KM_Interpreter GCode;

            public GCodeInterpreter()//this is the form
            {
                InitializeComponent();
                KM = new KM_Controller();
                CM = new KM_CoordMotion(KM);

                CM.Interpreter.InterpreterUserMCodeCallbackRequested += new  KM_Interpreter.KM_GCodeInterpreterUserMcodeCallbackHandler(Run);

                CM.Interpreter.InterpreterUserMCodeCallbackRequested += new  KM_Interpreter.KM_GCodeInterpreterUserMcodeCallbackHandler(Stop);

                GCode = new KM_Interpreter(CM);
            }


            private void GCodeInterpreter_Load(object sender, EventArgs e)
            {
                GCode.SetMcodeAction(3,MCODE_TYPE.M_Action_Callback, 0,0,0,0,0,"");
                GCode.SetMcodeAction(4,MCODE_TYPE.M_Action_Callback, 0,0,0,0,0,"");
            }
           
            private int Run(int code)
            {
                MessageBox.Show("Run");
                return 0;
            }

            private int Run(int code)
            {
                MessageBox.Show("Stop");
                return 0;
            }


       


    Group: DynoMotion Message: 15115 From: magergar@hotmail.com Date: 10/30/2017
    Subject: Re: Kmotion.net GCode Interpreter
    So the index used to select the leter "M"(in this case 3 for M3) it's the same that it's passed as parameter   "int Code" to the callback?

    I checked the spindle parameter, this change when I use the letter "S" by defualt? or how should I configure it?

    The reason that I'm trying to change this functions is that the spindle I have, works with RS485(it also work via General purpose I/O ports and analog inputs), and I'm able to turn on/off and change its speed through the KFLOP but there are other parameters that I need to control or modify remotly, and this device only allows one type of control, so if I configure my spindle to work along with the KFLOP(though the ports), I'm not able to use remote communication.
    Group: DynoMotion Message: 15117 From: Tom Kerekes Date: 10/30/2017
    Subject: Re: Kmotion.net GCode Interpreter
    The Action index isn't necessarily the MCode number.  For MCodes 0 - 9 they are the same.  The Interpreter maintains a packed table of Actions for several different ranges and types of things (Lower MCodes+S, User Buttons, Higher MCodes, Special Actions).  The S Action has an index of 10.    See these defines in GCodeInterpreter.h

    #define MAX_MCODE_ACTIONS_M1 11        // actually only 2-10  are used
    #define MAX_MCODE_ACTIONS_BUTTONS 10
    #define MAX_MCODE_ACTIONS_M100 20
    #define MAX_MCODE_ACTIONS_SPECIAL 8
    #define MAX_MCODE_ACTIONS (MAX_MCODE_ACTIONS_M1+MAX_MCODE_ACTIONS_M100+MAX_MCODE_ACTIONS_BUTTONS+MAX_MCODE_ACTIONS_SPECIAL)
    #define MAX_MCODE_DOUBLE_PARAMS 5
    #define MCODE_ACTIONS_M100_OFFSET (MAX_MCODE_ACTIONS_M1+MAX_MCODE_ACTIONS_BUTTONS)
    #define MCODE_ACTIONS_SPECIAL_OFFSET (MAX_MCODE_ACTIONS_M1+MAX_MCODE_ACTIONS_BUTTONS+MAX_MCODE_ACTIONS_M100)


    Yes when the Interpreter Executes a S word the internal Setup Parameter SpindleSpeed will be updated.

    HTH
    Regards
    TK

    On 10/30/2017 1:46 PM, magergar@... [DynoMotion] wrote:
     

    So the index used to select the leter "M"(in this case 3 for M3) it's the same that it's passed as parameter   "int Code" to the callback?

    I checked the spindle parameter, this change when I use the letter "S" by defualt? or how should I configure it?

    The reason that I'm trying to change this functions is that the spindle I have, works with RS485(it also work via General purpose I/O ports and analog inputs), and I'm able to turn on/off and change its speed through the KFLOP but there are other parameters that I need to control or modify remotly, and this device only allows one type of control, so if I configure my spindle to work along with the KFLOP(though the ports), I'm not able to use remote communication.